home *** CD-ROM | disk | FTP | other *** search
- ; SMakeMe --
- ; AmigaDOS script to rebuild All of precognition with SAS/C 6.51
- ;
- ; $VER: SMakeMe 2.2 (15.11.94)
- ;
- ; approx 37 minutes to compile everything on my A3000/16
- ;
- changetaskpri -1 ; let us do other things with higher priority while compiling
- ;
- ; First create the /lib/precognition.lib linker library
- ;
- Date >StartTime.SAS
- ;
- cd Library
- Smake >ERRLOG.SAS ; keep a log file of compiler errors, etc.
- ;
- ; Then create the //Precognition and //MultiWindowWriter Tools
- ;
- cd /Precognition
- Smake >ERRLOG.SAS ; keep a log file of compiler errors, etc.
- ;
- ; Return to the src directory
- cd /
- ;
- changetaskpri 0 ; return back to normal priority
- Date >EndTime.SAS
- ; Done!